github.com/andybalholm/brotli/matchfinder.Writer.inBuf (field)

14 uses

	github.com/andybalholm/brotli/matchfinder (current package)
		matchfinder.go#L54: 	inBuf   []byte
		matchfinder.go#L68: 	w.inBuf = append(w.inBuf, p...)
		matchfinder.go#L70: 	for pos = 0; pos+w.BlockSize <= len(w.inBuf) && w.err == nil; pos += w.BlockSize {
		matchfinder.go#L71: 		w.writeBlock(w.inBuf[pos:pos+w.BlockSize], false)
		matchfinder.go#L74: 		n := copy(w.inBuf, w.inBuf[pos:])
		matchfinder.go#L75: 		w.inBuf = w.inBuf[:n]
		matchfinder.go#L90: 	w.writeBlock(w.inBuf, true)
		matchfinder.go#L91: 	w.inBuf = w.inBuf[:0]
		matchfinder.go#L99: 	w.inBuf = w.inBuf[:0]